home *** CD-ROM | disk | FTP | other *** search
- /*****
- $VER: RecentScript IntuiNews PlugIn 0.3 (30.8.97) ©Arndt van der Molen
-
-
- RecentScript PlugIn for news/email reader IntuiNews.
-
- Starts the MUIRexx application 'RecentScript' with the
- currently viewed article or all selected articles.
-
- Installation:
-
- Add following line(s) to 'ums.config'
-
- ( IntuiNews.Rexx
- "(Article|Message)Window F9 MUIRexx:RecentScript/Plugins/RecentScript.intui\n"
- )
-
- whereas the function key number is the first unused in your
- UMS configuration. Note: The maximum allowed number is 10.
-
- Known 'Bugs':
- - At multiselection the first line (and therefore the first
- archive) of all additional selections is added without a
- newline and is not recognized by RecentScript.
- - IntuiNews do not quit until RecentScript is quited
- - Temporary file will not be deleted
- *****/
-
- OPTIONS RESULTS
-
- status
-
- IF RESULT = "MESSAGE"
- THEN DO
- getmsgnum
- msgs = RESULT
- END
- ELSE
-
- IF RESULT = "ARTICLE"
- THEN DO
-
- getselmsgnums
- IF RESULT = "RESULT" THEN EXIT 5
- msgs = RESULT
- END
-
- ELSE EXIT 5
-
- 'savemsgbody' msgs 'TO T:RS.temp'
-
- ADDRESS COMMAND 'MUIRexx:MUIRexx "MUIRexx:RecentScript/RecentScript.rexx T:RS.temp" PORT RECENTSCRIPT'
-